home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 02 / 8 / DISK0283.ZIP / README.TXT < prev    next >
Text File  |  1983-12-27  |  4KB  |  70 lines

  1. DocuFile - Help Screen Generator                         General Information
  2. ═══════════════════════════════════════════════════════════════════════════════
  3.  
  4. DocuFile will take any standard text file and create a basic program to
  5. display the text file. This allows you to create help screens from your
  6. favorite text editor and then add all the PRINT statements automatically.
  7. This is beneficial for two reasons. 1 - if you need to insert portions of text
  8. you do so with your text editor and then regenerate the help screens with  
  9. DocuFile. 2 - all the prompts for next page and previous page are added
  10. wherever you indicate a page break.
  11.  
  12. This program was developed by Global Technologies Corporation and has been 
  13. placed in public domain for the benefit of all. If you feel this program is
  14. beneficial to your needs please send a check for $10.00 to Global Technologies
  15. P.O. Box 441000 Aurora Colorado 80044.
  16.       
  17. Please copy this program and give it to as many people as you want.
  18. *
  19. DocuFile - Help Screen Generator                            Source Text File
  20. ═══════════════════════════════════════════════════════════════════════════════
  21.  
  22. The source text file is the word processing file that you are going to
  23. convert to Basic language file code for purposes of generating easy
  24. to use help screens that may be called from Basic applications.             
  25.  
  26. Enter the file name with a disk drive letter if it does not reside on
  27. the drive you are currently defaulted to. For Example [B:TEXTFILE.EXT].
  28.  
  29. The source text file must be a standard ASCII file and must not contain
  30. special control characters single or double quotation marks asemi colons
  31. or commas! If you must have commas or special punctuation in the help
  32. screen add it after DocuFile has created the help screen program.
  33. *
  34. Docufile - Help Screen Generator                     Help Screen Program
  35. ═══════════════════════════════════════════════════════════════════════════════
  36.  
  37. The destination help screen is the Basic program file that will contain the 
  38. text from your source file converted into Basic source code. This file 
  39. should be named as the help program you will be running from your Basic
  40. application program.
  41.  
  42. Enter the file name with a disk drive letter if it will not reside on
  43. the drive you are currently defaulted to. For example [B:DESTFILE.BAS].
  44.  
  45. The output code file will be generated with Basic PRINT statements and
  46. may be executed from any Basic application as a subroutine. The program        
  47. generated will contain RETURN statements on every page and at the end of
  48. the entire subroutine to facilitate use with other programs and appli-
  49. cations without modifications. If you need to run the help screen as a free
  50. standing program simply replace all RETURN statements with SYSTEM statements.
  51. *
  52. DocuFile - Help Screen Generator                                       AutoPage
  53. ═══════════════════════════════════════════════════════════════════════════════
  54.  
  55. The AutoPage function automatically places pause/continue prompts wherever
  56. an [*] is found in the document text file. The asterix [*] must be in the 
  57. first column of any line in the text file. When used a prompt will appear
  58. when the listing reaches that point and three options will be offered. 
  59.  
  60. (N)ext page (P)revious Page or C)ancel
  61.  
  62. If you choose not to have AutoPage enter these features for you may
  63. place such prompts as you desire using whatever text editor is available.
  64. This may be necessary if you want to chain to other programs from a help
  65. screen.
  66.  
  67. AutoPage will RETURN program control to where it was called from with the
  68. RETURN statement.
  69. *
  70.